home *** CD-ROM | disk | FTP | other *** search
/ Computer Savvy: Software Proficiency / Computer Savvy - Software Proficiency.iso / PROGFILE.SFS / CUSTOM.RUL < prev    next >
Text File  |  1997-10-22  |  11KB  |  270 lines

  1. /*----------------------------------------------------------------------------*\
  2.  *  Custom.RUL
  3.  *  Sofsource Installation Package:  Program-Specific Declarations.
  4.  *  Copyright (c) 1995-1996 Sofsource, Inc.  All rights  reserved.
  5.  *  Setup script written by:  Bob Falk
  6.  *------------------------------------------------------------------------------
  7.  *  Program-specific declarations for:  Computer Savvy: CD 2
  8.  *                    Last updated on:  10/22/1997
  9.  *  Revision Info:
  10.  *    $Revision:   1.0  $
  11.  *    $Date:   22 Oct 1997 16:22:00  $
  12. \*----------------------------------------------------------------------------*/
  13.  
  14. //=================================================================================================
  15. // The following are used in the Windows 95 Registry:
  16. //
  17. // Windows 3.x and NT NOTES:
  18. //   COMPANY_NAME, PRODUCT_NAME, and PRODUCT_VERSION are used in the [Application] section
  19. //   of SETUP.LOG files (when used).
  20. //
  21. // Windows 95 NOTES:
  22. //   COMPANY_NAME           = Used in Application Information Key
  23. //   PRODUCT_NAME           = Used in Application Information Key, also used in the screen caption,
  24. //                            several message boxes, error messages, and the log file.
  25. //   PRODUCT_VERSION        = Used in Application Information Key
  26. //   APP_PATHS_KEY_EXENAMES = Used in the Per Application Paths key.  Use ONLY ONE EXE name, UNLESS
  27. //                            the EXEs are all in the same subdirectory.  If not in the same subdir
  28. //                            then only the first EXE will have an App Paths key, and it must be the
  29. //                            same as EXE_FILENAME_1 (below).
  30. //                            The Registry can handle more, but InstallShield cannot.
  31. //   DEINSTALL_KEY          = Used in the Application Uninstallation Key
  32. //   The "Add/Remove Programs" applet, in the Windows 95 Control Panel folder, will list
  33. //   (as [DisplayName]) the program as a combination of PRODUCT_NAME + ' v' + PRODUCT_VERSION.
  34. //
  35. #define COMPANY_NAME           "Sofsource, Inc."
  36. #define PRODUCT_NAME           "Software Proficiency"
  37. #define PRODUCT_VERSION        "1.00"
  38. #define APP_PATHS_KEY_EXENAMES "PYRAMID.EXE"
  39. #define DEINSTALL_KEY          "Sof92194Ver100DeinstKey"
  40.   // Used as:  InstallationInfo( COMPANY_NAME, PRODUCT_NAME, PRODUCT_VERSION, APP_PATHS_KEY_EXENAMES );
  41.   //           RegDBSetItem( REGDB_UNINSTALL_NAME, PRODUCT_NAME + ' v' + PRODUCT_VERSION );
  42.   //           DeinstallStart( svDestPath, svUninstLogFile, DEINSTALL_KEY, 0 );
  43.  
  44. // The EXTRAICONS_APP_NAME is used for icons related to the main program, such as for READ.ME files.
  45. // The icon title might be something like "WC Encyclopedia Read Me" rather than the ridiculously
  46. // long "Webster's Concise Encyclopedia Read Me".  If the PRODUCT_NAME is less than about 18 characters
  47. // in length, then EXTRAICONS_APP_NAME should be the same as PRODUCT_NAME.  In Windows 95, any title
  48. // longer than 17 characters will appear with ellipses (...).
  49. //                      !!! |-----------------| 17 chars max length !!!
  50. //#define EXTRAICONS_APP_NAME "???"
  51. #define EXTRAICONS_APP_NAME PRODUCT_NAME
  52.  
  53. //----- Base (Default) Destination Paths:
  54. #define APPBASE_PATH3X      "SOFSRC\\Software\\"
  55. #define APPBASE_PATH95      "Sofsource\\Software\\"
  56.  
  57.  
  58. //----- Define the items that MUST match LAUNCHER.PAS:
  59. //        Windows 95.  This will typically be "C:\Sofsource" and will always be on the same
  60. //        drive as Windows 95 itself, regardless of the installation target (destination).
  61. // This also must match the cSectionName in LAUNCHER.PAS.
  62. // This should be 70-characters max.  If longer, you'll need to edit the Perm Setup Log details.
  63. #define PROGRAM_FOLDER_NAME     "Sofsource"
  64. #define APP_UPC_CODE        "92194-2"
  65.   // APP_UPC_CODE 30-chars max.  If longer, you'll need to edit the Perm Setup Log details.
  66. #define PRODUCT_ID_FILENAME "ID921942.ID_"
  67.  
  68.  
  69. //=================================================================================================
  70. #define NUM_EXES_PRESENT 1
  71.   // Set the above to the number of executable files
  72.   // belonging to the product, FOR WHICH ICONS WILL BE MADE
  73.   // *** Use "-1" when WINHELP.EXE should execute a HLP file INSTEAD OF AN EXE ***
  74.   // *** Use "-1" when there is no executable, only a help file ***
  75.  
  76. #define NEEDS_HELPFILE_ICON 0
  77.   // Define the above if WINHELP.EXE should execute a HLP file
  78.   // IN ADDITION TO the normal EXE file handling (above).
  79.   // Use this when there is both an executable(s) AND a HLP file.
  80.  
  81.  
  82. //=================================================================================================
  83. // Documentation/READ-ME file definitions:
  84.  
  85. // Define the following if a README file is present
  86. #define DOCUMENTATION_PRESENT 0
  87. #ifdef DOCUMENTATION_PRESENT
  88.     #define DOC_FILE_NAME "README.TXT"
  89.     #define DOC_ICON_NAME '"Program Read Me"'
  90. #endif
  91.   // NOTE:  For Icon Names, single-quotes enclose the double-quotes.  This doesn't matter
  92.   //        under Windows 95, but is important under Windows 3.x and NT.  In the latter cases,
  93.   //        without the extra single quotes, you could not use special characters (such as
  94.   //        commas or parentheses) in the name.  Of course, now you'll need to use an
  95.   //        Escape Sequence to place a single quote in the name (i.e. "\'" instead of "'").
  96.  
  97. //=================================================================================================
  98. // Executable and Icon File Definitions:
  99.  
  100. #ifdef NUM_EXES_PRESENT >= 1
  101. // In Windows 95 only the first 17 chars appear, remaining chars are replaced with ellipses (...)
  102. //                        !!! |-----------------| 17 chars max length
  103.     #define PROGICON_NAME_1 '"Software Proficiency"'
  104.     #define EXE_FILENAME_1  "PYRAMID.EXE"
  105.     #define ICON_FILENAME_1 "SAVVY.ICO"  
  106. #endif
  107. #ifdef NUM_EXES_PRESENT >= 2
  108.     #define PROGICON_NAME_2 '""'
  109.     #define EXE_FILENAME_2  ""
  110.     #define ICON_FILENAME_2 ""
  111. #endif
  112. #ifdef NUM_EXES_PRESENT >= 3
  113.     #define PROGICON_NAME_3 '""'
  114.     #define EXE_FILENAME_3  ""
  115.     #define ICON_FILENAME_3 ""
  116. #endif
  117. #ifdef NUM_EXES_PRESENT >= 4
  118.     #define PROGICON_NAME_4 '""'
  119.     #define EXE_FILENAME_4  ""
  120.     #define ICON_FILENAME_4 ""
  121. #endif
  122. #ifdef NUM_EXES_PRESENT = -1
  123.     #define HELP_NAME_1 '"???"'
  124.     #define HLP_FILE_1  "???.HLP"
  125. #endif
  126. #ifdef NEEDS_HELPFILE_ICON
  127.     #define HELP_NAME_1 '"Software Proficiency Help"'
  128.     #define HLP_FILE_1  "PYRAMID.HLP"
  129. #endif
  130.  
  131.  
  132. //=================================================================================================
  133. // Special Case Involving Running From CD-ROM
  134.  
  135. #define CDROM_ALWAYS_REQUIRED 1
  136.   // Define the above if the CD-ROM must always be inserted to use the program
  137.  
  138.  
  139. #define EXE_RUN_FROM_CDROM 1
  140.   // Define the above if the EXE is started from the CD-ROM
  141.  
  142. #ifdef EXE_RUN_FROM_CDROM
  143.     #ifdef NUM_EXES_PRESENT >= 1
  144.         #define SRC_PATH_1_ON_CDROM "\\Software\\"  // Always terminate with a backslash
  145.     #endif
  146.     #ifdef NUM_EXES_PRESENT >= 2
  147.         #define SRC_PATH_2_ON_CDROM "\\x\\"  // Always terminate with a backslash
  148.     #endif
  149.     #ifdef NUM_EXES_PRESENT >= 3
  150.         #define SRC_PATH_3_ON_CDROM "\\x\\"  // Always terminate with a backslash
  151.     #endif
  152.     #ifdef NUM_EXES_PRESENT >= 4
  153.         #define SRC_PATH_4_ON_CDROM "\\x\\"  // Always terminate with a backslash
  154.     #endif
  155. #endif
  156.  
  157.  
  158. #define WORKING_DIR_ON_CDROM 1
  159.   // Define the above if the working directory should be on the CD-ROM
  160.   // otherwise the working directory will be the installation target directory
  161.  
  162. #ifdef WORKING_DIR_ON_CDROM
  163.     #ifdef NUM_EXES_PRESENT >= 1
  164.         #define WORK_PATH_1_ON_CDROM "\\Software\\"  // Always terminate with a backslash
  165.     #endif
  166.     #ifdef NUM_EXES_PRESENT >= 2
  167.         #define WORK_PATH_2_ON_CDROM "\\x\\"  // Always terminate with a backslash
  168.     #endif
  169.     #ifdef NUM_EXES_PRESENT >= 3
  170.         #define WORK_PATH_3_ON_CDROM "\\x\\"  // Always terminate with a backslash
  171.     #endif
  172.     #ifdef NUM_EXES_PRESENT >= 4
  173.         #define WORK_PATH_4_ON_CDROM "\\x\\"  // Always terminate with a backslash
  174.